/* ========================================================================
   SWEEPSTAKES REVIEW STYLES — COMPANION TO articles.css
   Adds only the components specific to sweepstakes casino reviews.
   Load AFTER articles.css.
   Last Updated: April 2026
   ======================================================================== */

/* REVIEW HERO — top block with logo, offer highlights, CTAs
   -------------------------------------------------------------------- */
.review-hero {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.review-hero-content h1 { margin-top: 0; }

.review-hero-card {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
}

.review-hero-card img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.offer-headline {
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
    color: #309;
    margin: 10px 0 5px 0;
    text-align: center;
}

.offer-detail {
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #333;
    text-align: center;
    margin: 12px 0 8px 0;
}

.offer-detail em {
    color: #063;
    font-size: 14px;
}

/* HERO OFFER BLOCK - welcome offer + CTA in left column
   -------------------------------------------------------------------- */
.hero-offer-block {
    background-color: #f0fff4;
    border: 1px solid #a3d9b1;
    border-radius: 4px;
    padding: 15px 20px;
    margin: 15px 0 0 0;
}

.hero-offer-block .offer-headline {
    text-align: left;
    margin-top: 0;
    color: #155724;
}

.hero-offer-block .offer-detail {
    text-align: left;
    margin: 5px 0 10px 0;
}

.hero-button-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
}

.hero-highlights li {
    font-size: 15px;
    line-height: 24px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

.hero-highlights li::before {
    content: "●";
    color: #063;
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 2px;
}

/* CTA BUTTONS - primary (visit), secondary (claim offer)
   Specificity boosted with .article-body to override base a:link rules
   -------------------------------------------------------------------- */
.article-body .cta-primary,
.article-body .cta-secondary {
    display: inline-block;
    padding: 12px 20px;
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border-radius: 4px;
    margin: 10px 0;
    box-sizing: border-box;
    transition: opacity 0.2s;
    color: #000 !important;
    text-decoration: none !important;
}

.article-body .cta-primary {
    background-color: #fae77a;
}

.article-body .cta-secondary {
    background-color: #cf0;
}

.article-body .cta-primary:link,
.article-body .cta-primary:visited,
.article-body .cta-secondary:link,
.article-body .cta-secondary:visited {
    color: #000 !important;
    text-decoration: none !important;
}

.article-body .cta-primary:hover,
.article-body .cta-secondary:hover {
    opacity: 0.85;
    text-decoration: none !important;
    color: #000 !important;
}

/* Inline CTA inside article prose */
.article-body .cta-inline {
    display: inline-block;
    padding: 10px 25px;
    background-color: #fae77a;
    border-radius: 4px;
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 17px;
    margin: 15px 0;
    color: #000 !important;
    text-decoration: none !important;
}

.article-body .cta-inline:link,
.article-body .cta-inline:visited { color: #000 !important; text-decoration: none !important; }
.article-body .cta-inline:hover   { opacity: 0.85; color: #000 !important; text-decoration: none !important; }

/* TRUST LINE — byline with editorial trust links
   -------------------------------------------------------------------- */
.article-body .trust-line {
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #666;
    margin: 10px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.article-body .trust-line a:link,
.article-body .trust-line a:visited {
    color: #309;
    text-decoration: none;
}

.article-body .trust-line a:hover {
    color: #c00;
    text-decoration: underline;
}

.trust-line .sep {
    color: #ccc;
    margin: 0 8px;
}

/* COMPARISON TABLE — for "How X compares to rivals" sections
   -------------------------------------------------------------------- */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 22px;
}

.compare-table th,
.compare-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.compare-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #309;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-table tr:hover td {
    background-color: #fafafa;
}

.compare-table .highlight-row td {
    background-color: #f0eaf8;
    font-weight: bold;
}

/* RESPONSIVE
   -------------------------------------------------------------------- */
@media screen and (max-width: 960px) {
    .review-hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .review-hero-card {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 480px) {
    .review-hero-card   { padding: 15px; }
    .offer-headline     { font-size: 18px; }
    .cta-primary,
    .cta-secondary      { font-size: 16px; padding: 11px 12px; }
    .cta-inline         { font-size: 15px; padding: 9px 18px; }
    .compare-table th,
    .compare-table td   { padding: 8px; font-size: 14px; }
    .trust-line         { font-size: 13px; }
    .trust-line .sep    { margin: 0 5px; }
}
